home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 September / PCWorld_2002-09_cd.bin / Software / Vyzkuste / httrack / httrack-3.20RC4.exe / {app} / src / htsbasenet.h < prev    next >
C/C++ Source or Header  |  2002-07-09  |  2KB  |  87 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: Basic net definitions                                  */
  34. /*       Used in .c and .h files that needs T_SOC and so        */
  35. /* Author: Xavier Roche                                         */
  36. /* ------------------------------------------------------------ */
  37.  
  38. #ifndef HTS_DEFBASENETH
  39. #define HTS_DEFBASENETH
  40.  
  41. #if HTS_WIN
  42.  
  43. #if HTS_INET6==0
  44.  #include <winsock.h>
  45. #else
  46. #undef HTS_USESCOPEID
  47. #define WIN32_LEAN_AND_MEAN
  48. #include <winsock2.h>
  49. #include <ws2tcpip.h>
  50. #include <tpipv6.h>
  51. #endif
  52.  typedef SOCKET T_SOC;
  53.  typedef struct hostent FAR t_hostent;
  54.  
  55. #else
  56. #define HTS_USESCOPEID
  57.  #define INVALID_SOCKET -1
  58.  typedef int T_SOC;
  59.  typedef struct hostent t_hostent;
  60. #endif
  61.  
  62. #if HTS_USEOPENSSL
  63. /*
  64.    OpensSSL crypto routines by Eric Young (eay@cryptsoft.com)
  65.    Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  66.    All rights reserved
  67. */
  68. #ifndef HTS_OPENSSL_H_INCLUDED
  69. #define HTS_OPENSSL_H_INCLUDED
  70. #ifdef __cplusplus
  71. extern "C" {
  72. #endif
  73. #include <openssl/ssl.h>
  74. #include <openssl/crypto.h>
  75. #include <openssl/err.h>
  76. //#include <openssl/bio.h>
  77. #ifdef __cplusplus
  78.  };
  79. #endif
  80. /* OpenSSL structure */
  81. extern SSL_CTX *openssl_ctx;
  82.  
  83. #endif
  84. #endif
  85.  
  86. #endif
  87.